/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./src/styles/article-content.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
/* Article Content Prose Styles
 * Styles for raw HTML content without Tailwind classes
 * Used for articles from WordPress sync and generated content
 */

.article-content {
  color: #374151; /* text-gray-700 */
  line-height: 1.75;
  font-size: 1rem;
}

/* Headings */
.article-content h1 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 800;
  color: #111827; /* text-gray-900 */
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.article-content h2 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: #111827; /* text-gray-900 */
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #e0e7ff; /* border-primary-100 */
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content h2::before {
  content: '';
  display: inline-block;
  width: 0.25rem;
  height: 1.25rem;
  background-color: #6366f1; /* bg-primary-500 */
  border-radius: 9999px;
  flex-shrink: 0;
}

.article-content h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: #1f2937; /* text-gray-800 */
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #f3f4f6; /* border-gray-100 */
}

.article-content h4 {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  color: #1f2937; /* text-gray-800 */
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.article-content h5 {
  font-size: 1rem; /* text-base */
  font-weight: 600;
  color: #1f2937; /* text-gray-800 */
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.article-content h6 {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  color: #4b5563; /* text-gray-600 */
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs */
.article-content p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #374151; /* text-gray-700 */
  line-height: 1.625;
}

/* Links */
.article-content a {
  color: #6366f1; /* text-primary-600 */
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.article-content a:hover {
  color: #4f46e5; /* text-primary-700 */
}

/* Bold and Italic */
.article-content strong,
.article-content b {
  font-weight: 600;
  color: #111827; /* text-gray-900 */
}

.article-content em,
.article-content i {
  font-style: italic;
}

/* Lists */
.article-content ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.article-content ol {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter;
}

.article-content ul > li {
  margin-left: 1rem;
  margin-bottom: 0.25rem;
  color: #374151;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.article-content ul > li::before {
  content: '';
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #6366f1; /* bg-primary-500 */
  border-radius: 9999px;
  margin-top: 0.625rem;
  flex-shrink: 0;
}

.article-content ol > li {
  margin-left: 1rem;
  margin-bottom: 0.25rem;
  color: #374151;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  counter-increment: list-counter;
}

.article-content ol > li::before {
  content: counter(list-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #e0e7ff; /* bg-primary-100 */
  color: #4338ca; /* text-primary-700 */
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Blockquotes */
.article-content blockquote {
  border-left: 4px solid #6366f1; /* border-primary-500 */
  background-color: #eef2ff; /* bg-primary-50 */
  padding: 0.5rem 1rem;
  margin: 0.75rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #374151;
}

.article-content blockquote p {
  margin: 0;
}

/* Code */
.article-content code {
  padding: 0.125rem 0.375rem;
  background-color: #f3f4f6; /* bg-gray-100 */
  color: #6366f1; /* text-primary-600 */
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.article-content pre {
  margin: 1rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.article-content pre code {
  display: block;
  padding: 1rem;
  background-color: #111827; /* bg-gray-900 */
  color: #f3f4f6; /* text-gray-100 */
  font-size: 0.875rem;
  overflow-x: auto;
  border-radius: 0;
}

/* Tables */
.article-content table {
  width: 100%;
  margin: 1rem 0;
  border-collapse: collapse;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.article-content thead {
  background-color: #f9fafb; /* bg-gray-50 */
}

.article-content th {
  padding: 0.75rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563; /* text-gray-600 */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e5e7eb;
}

.article-content td {
  padding: 0.75rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.article-content tbody tr:hover {
  background-color: #f9fafb;
}

/* Horizontal Rule */
.article-content hr {
  margin: 1.25rem 0;
  border: none;
  border-top: 2px solid #e5e7eb;
}

/* Images */
.article-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.article-content figure {
  margin: 1rem 0;
}

.article-content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Videos */
.article-content video {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.75rem;
  display: block;
}

/* iframes (YouTube, etc.) */
.article-content iframe {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-radius: 0.75rem;
}

/* YouTube responsive wrapper */
.article-content .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 1rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.article-content .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
}

/* Standalone YouTube iframe (without wrapper) */
.article-content > iframe[src*="youtube"],
.article-content > iframe[src*="youtu.be"] {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

